home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / AX25TNC.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  282b  |  17 lines

  1. #ifndef    NULLTNC
  2.  
  3. struct ax25tnc {
  4.     struct proc *input;
  5.     struct proc *output;
  6.     struct proc *upload;
  7.     struct session *session;
  8. };
  9. #define    NULLTNC    ((struct ax25tnc *)0)
  10.  
  11. /* In ax25cmd.c: */
  12. void ax_upload __ARGS((int unused,void *sp1,void *p));
  13.  
  14. #endif /* NULLTNC */
  15.  
  16.  
  17.